home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2001 Haziran / CHIP Haziran2001.iso / prog / share / 17 / dings_e.exe / Compiler / Include / DX7 / rmxftmpl.x < prev   
Encoding:
Text File  |  1999-03-03  |  3.9 KB  |  219 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <537DA6A0-CA37-11d0-941C-0080C80CFA7B>
  50.  DWORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <ED1EC5C0-C0A8-11d0-941C-0080C80CFA7B>
  87.  DWORD nFaceWrapValues;
  88.  array Boolean2d faceWrapValues[nFaceWrapValues];
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. template FrameTransformMatrix {
  129.  <F6F23F41-7686-11cf-8F52-0040333594A3>
  130.  Matrix4x4 frameMatrix;
  131. }
  132.  
  133. template Frame {
  134.  <3D82AB46-62DA-11cf-AB39-0020AF71E433>
  135.  [...]
  136. }
  137.  
  138. template FloatKeys {
  139.  <10DD46A9-775B-11cf-8F52-0040333594A3>
  140.  DWORD nValues;
  141.  array FLOAT values[nValues];
  142. }
  143.  
  144. template TimedFloatKeys {
  145.  <F406B180-7B3B-11cf-8F52-0040333594A3>
  146.  DWORD time;
  147.  FloatKeys tfkeys;
  148. }
  149.  
  150. template AnimationKey {
  151.  <10DD46A8-775B-11cf-8F52-0040333594A3>
  152.  DWORD keyType;
  153.  DWORD nKeys;
  154.  array TimedFloatKeys keys[nKeys];
  155. }
  156.  
  157. template AnimationOptions {
  158.  <E2BF56C0-840F-11cf-8F52-0040333594A3>
  159.  DWORD openclosed;
  160.  DWORD positionquality;
  161. }
  162.  
  163. template Animation {
  164.  <3D82AB4F-62DA-11cf-AB39-0020AF71E433>
  165.  [...]
  166. }
  167.  
  168. template AnimationSet {
  169.  <3D82AB50-62DA-11cf-AB39-0020AF71E433>
  170.  [Animation]
  171. }
  172.  
  173. template InlineData {
  174.  <3A23EEA0-94B1-11d0-AB39-0020AF71E433>
  175.  [BINARY]
  176. }
  177.  
  178. template Url {
  179.  <3A23EEA1-94B1-11d0-AB39-0020AF71E433>
  180.  DWORD nUrls;
  181.  array STRING urls[nUrls];
  182. }
  183.  
  184. template ProgressiveMesh {
  185.  <8A63C360-997D-11d0-941C-0080C80CFA7B>
  186.  [Url, InlineData]
  187. }
  188.  
  189. template Guid {
  190.   <A42790E0-7810-11cf-8F52-0040333594A3>
  191.   DWORD data1;
  192.   WORD data2;
  193.   WORD data3;
  194.   array UCHAR data4[8];
  195. }
  196.  
  197. template StringProperty {
  198.   <7F0F21E0-BFE1-11d1-82C0-00A0C9697271>
  199.   STRING key;
  200.   STRING value;
  201. }
  202.  
  203. template PropertyBag {
  204.   <7F0F21E1-BFE1-11d1-82C0-00A0C9697271>
  205.   [StringProperty]
  206. }
  207.  
  208. template ExternalVisual {
  209.  <98116AA0-BDBA-11d1-82C0-00A0C9697271>
  210.   Guid guidExternalVisual;
  211.   [...]
  212. }
  213.  
  214. template RightHanded {
  215.   <7F5D5EA0-D53A-11d1-82C0-00A0C9697271>
  216.   DWORD bRightHanded;
  217. }
  218.  
  219.